home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cocktail / ell.lha / ell / m2c / ErrorTab < prev    next >
Text File  |  1992-08-18  |  3KB  |  148 lines

  1. %
  2. %    ell2 - a redesign of ell
  3. %
  4. %    $RCSfile: ErrorTab,v $
  5. %    
  6. %    purpose:    error table
  7. %
  8. %    $Author: grosch $
  9. %    $Date: 1992/08/07 15:32:36 $
  10. %
  11. %
  12. %%%    Error Class Text
  13. %
  14. 1    Fatal                       eFatal
  15. 2    Restriction                 eRestriction
  16. 3    Error                       eError
  17. 4    Warning                     eWarning
  18. 5    Repair                      eRepair
  19. 6    Note                        eNote
  20. 7    Information                 eInformation
  21. %
  22. $
  23. %%%    Error Code Text -------------------------------------------------
  24. %
  25. %%%    Parser
  26. %
  27. 1    syntax error                eSyntaxError
  28. 2    expected tokens: $            eExpectedSymbols
  29. 3    restart    point                eRestartPoint
  30. 4    token inserted : $            eSymbolInserted
  31. 5    error reading parse table        eWrongSetTable
  32. %
  33. %
  34. %%%    interne Fehler
  35. %    --------------
  36. %
  37. 11    internal error                eInternal
  38. %
  39. %
  40. %%%    Errors
  41. %
  42. 12    wrong error class             eWrongClass
  43. 13    wrong error code            eWrongCode
  44. %
  45. %
  46. %%%    ArgCheck
  47. %    --------
  48. %
  49. 14    unknown option $            eNoOption
  50. 15    too many arguments $            eTooManyArgs
  51. %
  52. 20    string not closed            eStringExceedsInput
  53. 21    comment not closed            eCommentNotClosed
  54. 22    action not closed            eActionNotClosed
  55. 23    string exceeds line            eStringExceedsLine
  56. 24    character ignored            eBackSlashInAct
  57. 25    character ignored            eIllegalChar
  58. %
  59. %%%    Parser
  60. %    ------
  61. 30    oper part ignored (only lalr)        eOperIgnored
  62. 31    prec part ignored (only lalr)        ePrecIgnored
  63. %
  64. %%%    Semantics
  65. %    ---------
  66. 40    $ is already declared            eAlreadyDeclared
  67. 41    $ is not declared            eNotDeclared
  68. 42    code $ exist already            eCodeExist
  69. 43    rules missing                eNoRules
  70. 44    $ is not reachable            eNotReachable
  71. 45    $ does not produce any sentences    eNotDerivable
  72. 46    never entered                eEnter
  73. 47    never entered with $            eEnter + 1
  74. 48    never skipped                eByPass
  75. 49    never skipped with $            eByPass + 1
  76. 50    never left                eLeft
  77. 51    never left with $            eLeft + 1
  78. 52    $ is left recursive            eLeftRec
  79. %
  80. %%    System Errors
  81. %    -------------
  82. %
  83. 101    not super-user 
  84. 102    no such file or directory 
  85. 103    no such process 
  86. 104    interrupted system call 
  87. 105    I/O error 
  88. 106    no such device or address 
  89. 107    arg list too long 
  90. 108    exec format error 
  91. 109    bad file number 
  92. 110    no children 
  93. 111    no more processes 
  94. 112    not enough core 
  95. 113    permission denied 
  96. 114    bad address 
  97. 115    block device required 
  98. 116    mount device busy 
  99. 117    file exists 
  100. 118    cross-device link 
  101. 119    no such device 
  102. 120    not a directory 
  103. 121    is a directory 
  104. 122    invalid argument 
  105. 123    file table overflow 
  106. 124    too many open files 
  107. 125    not a typewriter 
  108. 126    text file busy 
  109. 127    file too large 
  110. 128    no space left on device 
  111. 129    illegal seek 
  112. 130    read only file system 
  113. 131    too many links 
  114. 132    broken pipe 
  115. 133    math arg out of domain of func 
  116. 134    math result not representable 
  117. 135    no message of desired type 
  118. 136    identifier removed 
  119. 137    channel number out of range 
  120. 138    level 2 not synchronized 
  121. 139    level 3 halted 
  122. 140    level 3 reset 
  123. 141    link number out of range 
  124. 142    protocol driver not attached 
  125. 143    no CSI structure available 
  126. 144    level 2 halted 
  127. 145    out of swap space 
  128. 146    path continues onto another machine 
  129. 147    unison request for a retry 
  130. 148    record locking deadlock 
  131. 149    could not resolve IP addr, host down 
  132. 150    no available gateway in route table 
  133. 151    symbolic links form endless loop 
  134. %
  135. $
  136. %%%    Error Count Text ------------------------------------------------
  137. %
  138. 1    fatal error(s)
  139. 2    restriction(s)
  140. 3    error(s)
  141. 4    warning(s)
  142. 5    repair(s)
  143. 6    note(s)
  144. 7    information(s)
  145. %
  146. $
  147. %%%    -----------------------------------------------------------------
  148.